home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / rptfaremap.sql < prev    next >
Text File  |  2000-05-12  |  803b  |  22 lines

  1. /* RCSVER $Id: rptfaremap.sql,v 1.2 2000-04-13 14:36:16-05 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        rptfaremap.sql
  6. * Date:        02/24/2000
  7. * memo:        Randy Wood
  8. * Description:    Create the rptfaremap table. 
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE rptfaremap
  12. (
  13.     report_indx    NUMBER(38),    /* Number unique to the associated report */
  14.                     /* from the rptnames table                */
  15.     fareset_id    NUMBER(38),
  16.     fare_id    NUMBER(38),
  17.     rptclass    NUMBER(38),    /* heading (column) to be used */
  18.     config_num    NUMBER(38),
  19.     CONSTRAINT pk_rptfaremap PRIMARY KEY (report_indx, fareset_id, fare_id, 
  20.         config_num)
  21. );
  22.